home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 52
/
Amiga Format AFCD52 (Issue 136, May 2000).iso
/
-serious-
/
programming
/
other
/
littelcomp
/
r5
/
lc
/
examples
/
test.l
< prev
next >
Wrap
Text File
|
2000-02-28
|
434b
|
19 lines
// test our test.library if it can handle //
// stackbased %params .. //
#include "test_lib.i"
// All global stuff must be named with '_' in beginning! //
STRING _testname "littel:dev/test.library"
GVAR _TestBase
PROC main
CODESTART
openlibrary _testname 0 _TestBase
call _TestBase Delay100
closelibrary _TestBase
ENDPROC
END
// yep! it worked! //